home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / os2 / filefr16.zip / UPDATE.CMD < prev    next >
OS/2 REXX Batch file  |  1996-11-24  |  642b  |  24 lines

  1. /*--File Freedom Version 1.1 Update--*/
  2. SAY " "
  3. SAY "Enter the full Drive/path where File Freedom is Installed .."
  4. PARSE PULL PATHNAME
  5. xcopy filefrdm.exe PATHNAME
  6. if RC=0 then
  7. do
  8.    xcopy filefrdm.hlp PATHNAME
  9.    if RC=0 then
  10.    do
  11.       xcopy ffinstal.exe PATHNAME
  12.       xcopy uninstal.exe PATHNAME
  13.       xcopy readme PATHNAME
  14.       xcopy orderfrm PATHNAME
  15.       xcopy BMTMicro.frm PATHNAME
  16.       xcopy Tutorial.doc PATHNAME
  17.       SAY "Updating of File Freedom was Successful!"
  18.    end
  19.    else
  20.       SAY "Update was unsuccessful.  Check directory path!"
  21. end
  22. else SAY "Update was unsuccessful.  Check directory path!"
  23.  
  24.